2022-08-13 06:35:36 +03:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
|
|
|
namespace BlueWest.Data;
|
|
|
|
|
2022-08-18 22:59:13 +03:00
|
|
|
public class FinanceOpType
|
2022-08-13 06:35:36 +03:00
|
|
|
{
|
|
|
|
[Key] public int Id { get; set; }
|
|
|
|
|
|
|
|
public string Name;
|
|
|
|
|
|
|
|
private string Description;
|
|
|
|
}
|