18 lines
318 B
C#
18 lines
318 B
C#
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; }
|
|
}
|
|
} |