Missing File

Added a missing file from the last commit.
This commit is contained in:
JacobTech 2023-07-02 11:45:59 -04:00
parent cd5ab85911
commit 633fd3616e
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
using JacobTechEncryption.Enums;
using LuskiServer.Enums;
using LuskiServer.Interfaces;
namespace LuskiServer.Classes.v1.OutGoing;
public class ChannelResponse : IWebResponse
{
public string title { get; set; } = default!;
public string description { get; set; } = default!;
public long id { get; set; } = default!;
public ChannelType type { get; set; } = default!;
public long parent { get; set; } = default!;
public DateTime epoch { get; set; } = default!;
public long title_encryption_key { get; set; } = default!;
public long description_encryption_key { get; set; } = default!;
public bool encoder_blacklist { get; set; } = default!;
public bool encryption_blacklist { get; set; } = default!;
public EncryptionType[] encryption_types { get; set; } = default!;
public EncoderType title_encoder_type { get; set; } = default!;
public EncoderType description_encoder_type { get; set; } = default!;
public EncoderType[] encoder_types { get; set; } = default!;
}