mirror of
https://github.com/QuotifyTeam/QuotifyBE.git
synced 2025-12-17 00:40:06 +01:00
9 lines
152 B
C#
9 lines
152 B
C#
namespace QuotifyBE.Entities
|
|
{
|
|
public class Category
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
}
|
|
}
|