mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
14 lines
266 B
C#
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; }
|
|
} |