11 lines
294 B
C#
11 lines
294 B
C#
namespace EmbyToolbox.Views;
|
|
|
|
public sealed class StyleTestTableRow
|
|
{
|
|
public string Name { get; set; } = "";
|
|
public string Type { get; set; } = "";
|
|
public string Codec { get; set; } = "";
|
|
public string Language { get; set; } = "";
|
|
public string Status { get; set; } = "";
|
|
}
|