* cleanup scanner project * cleanup infrastructure projects * cleanup ffmpeg project * cleanup core project * cleanup app project * cleanup main project * update dependencies * code cleanup
13 lines
306 B
C#
13 lines
306 B
C#
using System.Diagnostics.CodeAnalysis;
|
|
|
|
namespace ErsatzTV.Scanner.Core.Metadata.Nfo;
|
|
|
|
public class UniqueIdNfo
|
|
{
|
|
public bool Default { get; set; }
|
|
public string? Type { get; set; }
|
|
|
|
[SuppressMessage("Naming", "CA1720:Identifier contains type name")]
|
|
public string? Guid { get; set; }
|
|
}
|