Moving common code to shared lib

This commit is contained in:
2024-06-14 10:27:41 -05:00
parent 1ce55a583a
commit d9866c2fa9
8 changed files with 27 additions and 40 deletions

18
shared/Model/DataModel.cs Normal file
View File

@ -0,0 +1,18 @@
namespace Model
{
public class DataModel
{
public DataModel(string id)
{
this.id = id;
}
public string id { get; set; }
public string? name { get; set; }
public string? description { get; set; }
public string? notes { get; set; }
}
}