mirror of
https://github.com/barelyprofessional/KfChatDotNet.git
synced 2026-04-30 03:22:04 -04:00
8 lines
206 B
C#
8 lines
206 B
C#
namespace KfChatDotNetBot.Models;
|
|
|
|
public class DLiveIsLiveModel
|
|
{
|
|
public required bool IsLive { get; set; }
|
|
public string? Title { get; set; }
|
|
public required string Username { get; set; }
|
|
} |