mirror of
https://github.com/PacktPublishing/Web-Development-with-Blazor-Second-Edition.git
synced 2025-12-06 05:32:03 +01:00
8 lines
156 B
C#
8 lines
156 B
C#
namespace Data.Models;
|
|
public class Category
|
|
{
|
|
public string? Id { get; set; }
|
|
[Required]
|
|
public string Name { get; set; } = string.Empty;
|
|
}
|