45 lines
867 B
C#
45 lines
867 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using AyCode.Entities.Interfaces;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace TIAM.Entities.TransferDestinations
|
|
{
|
|
[Table("TransferDestination")]
|
|
public class TransferDestination : IEntityGuid, ITimeStampInfo
|
|
{
|
|
[DatabaseGenerated(DatabaseGeneratedOption.None)]
|
|
public Guid Id
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string Name
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string Description
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public decimal Longitude
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public decimal Latitude
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public DateTime Created { get; set; }
|
|
public DateTime Modified { get; set; }
|
|
}
|
|
}
|
|
|