mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-05-02 04:22:04 -04:00
Initial commit
This commit is contained in:
14
KfChatDotNetGui/Models/RoomSettingsModel.cs
Normal file
14
KfChatDotNetGui/Models/RoomSettingsModel.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
}
|
||||
Reference in New Issue
Block a user