This repository has been archived on 2023-06-01. You can view files and clone it, but cannot push or open issues or pull requests.
discord-bot-shtik/Models/Attachment.cs

12 lines
302 B
C#
Raw Permalink Normal View History

2023-06-01 00:01:28 -04:00
namespace vassago.Models;
using System;
2023-06-01 00:01:28 -04:00
public class Attachment
{
2023-06-01 00:01:28 -04:00
public Guid Id { get; set; }
public ulong? ExternalId { get; set; }
public Uri Source { get; set; }
public byte[] Content { get; set; }
public string Filename { get; set; }
public Message Message { get; set; }
}