12 lines
207 B
C#
12 lines
207 B
C#
|
using System.ComponentModel.DataAnnotations;
|
||
|
|
||
|
namespace BlueWest.Data;
|
||
|
|
||
|
public class FinanceTransactionType
|
||
|
{
|
||
|
[Key] public int Id { get; set; }
|
||
|
|
||
|
public string Name;
|
||
|
|
||
|
private string Description;
|
||
|
}
|