9 lines
184 B
C#
9 lines
184 B
C#
|
|
namespace MediaOrganizer.Tasks.Inspection;
|
||
|
|
|
||
|
|
public sealed record class TrackSubtitle
|
||
|
|
{
|
||
|
|
public required string LangCode { get; set; }
|
||
|
|
|
||
|
|
public required string Language { get; set; }
|
||
|
|
}
|