mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
14 lines
376 B
C#
14 lines
376 B
C#
using Microsoft.AspNetCore.Components.Forms;
|
|
|
|
namespace Lantean.QBTMudBlade.Models
|
|
{
|
|
public record AddTorrentFileOptions : TorrentOptions
|
|
{
|
|
public AddTorrentFileOptions(IReadOnlyList<IBrowserFile> files, TorrentOptions options) : base(options)
|
|
{
|
|
Files = files;
|
|
}
|
|
|
|
public IReadOnlyList<IBrowserFile> Files { get; }
|
|
}
|
|
} |