Moving common code to shared lib
This commit is contained in:
18
shared/Model/DataModel.cs
Normal file
18
shared/Model/DataModel.cs
Normal 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; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user