20 lines
394 B
C#
20 lines
394 B
C#
|
|
namespace agologumApi.Models;
|
|
|
|
public class Item {
|
|
|
|
public int Id { get; set; }
|
|
public String Name { get; set; } = "";
|
|
public String Description { get; set; } = "";
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime LastEditedAt { get; set; }
|
|
|
|
};
|
|
|
|
public class ItemDto {
|
|
|
|
public String Name { get; set; } = "";
|
|
public String Description { get; set; } = "";
|
|
|
|
}
|