14 lines
365 B
C#
14 lines
365 B
C#
namespace Back.Data.Models
|
|
{
|
|
public class Notification
|
|
{
|
|
public int ID { get; set; }
|
|
public int Type { get; set; }
|
|
public string Message { get; set; }
|
|
public string? Path { get; set; }
|
|
public string? ViewSize { get; set; }
|
|
public string Date { get; set; }
|
|
public bool Status { get; set; }
|
|
}
|
|
}
|