Updated models

This commit is contained in:
2024-08-13 17:51:48 +03:00
parent 5db1d1b1c5
commit 5475e587be
7 changed files with 45 additions and 7 deletions

View File

@@ -3,6 +3,9 @@
/// Model of a country
public class Country : IEntity
{
/// Unique identifier of the <see cref="Country"/>
public Guid Id { get; private set; } = Guid.NewGuid();
/// Name of the country
public string Name { get; set; } = null!;