Files
KfChatDotNet/KfChatDotNetGui/Models/RoomSettingsModel.cs
barelyprofessional 9f92fc8e27 Initial commit
2024-03-25 20:11:49 +08:00

14 lines
266 B
C#

using System.Collections.Generic;
namespace KfChatDotNetGui.Models;
public class RoomSettingsModel
{
public class RoomList
{
public string Name { get; set; }
public int Id { get; set; }
}
public List<RoomList> Rooms { get; set; }
}