14 lines
402 B
C#
14 lines
402 B
C#
namespace YLErp.Model
|
|
{
|
|
public class Underlying_basisCurveLinq
|
|
{
|
|
public int id { get; set; }
|
|
public int UnderlyingTypeId { get; set; }
|
|
public string UnderlyingCode { get; set; }
|
|
public string UnderlyingName { get; set; }
|
|
public int OptId { get; set; }
|
|
public string OptName { get; set; }
|
|
public DateTime? OptData { get; set; }
|
|
}
|
|
}
|