CodeLiturgy.Dashboard/BlueWest.Data/Transaction/FinanceOpType.cs

20 lines
295 B
C#
Raw Normal View History

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