CodeLiturgy.Dashboard/BlueWest.Data.Capital/Currency/CurrencyUnique.cs

20 lines
423 B
C#
Raw Normal View History

2022-09-10 07:12:03 +03:00
using System;
2022-08-19 02:02:57 +03:00
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using MapTo;
namespace BlueWest.Data
{
[MapFrom(typeof(Currency))]
public partial class CurrencyUnique
{
public int Id { get; set; }
2022-08-19 02:02:57 +03:00
public int Num { get; set; } // Primary key
[MaxLength(3)] public string Code { get; set; }
2022-09-10 07:12:03 +03:00
public DateTime CreateDate { get; set; }
2022-08-19 02:02:57 +03:00
}
}