44 lines
781 B
C#
44 lines
781 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace TIAMWebApp.Shared.Application.Models
|
|
{
|
|
[Table("TransferDestinations")]
|
|
public class TransferDestination
|
|
{
|
|
public int DestinationId
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
public string DestinationName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public string DestinationDescription
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public float DestinationLongitude
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public float DestinationLatitude
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|
|
|