17 lines
317 B
C#
17 lines
317 B
C#
namespace LiteCharms.Models;
|
|
|
|
public class Package
|
|
{
|
|
public Guid Id { get; set; }
|
|
|
|
public DateTimeOffset CreatedAt { get; set; }
|
|
|
|
public DateTimeOffset? UpdatedAt { get; set; }
|
|
|
|
public string? Name { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public bool Active { get; set; }
|
|
}
|