Files
TheXamlGuy/App/WeddingBooth/LifeCycles/Table.cs
T
2022-11-01 15:26:08 +00:00

12 lines
225 B
C#

using System.Collections.Generic;
namespace WeddingBooth.LifeCycles
{
public class Table
{
public string? Name { get; set; }
public List<string> Guests { get; set; } = new List<string>();
}
}