9 lines
154 B
C#
9 lines
154 B
C#
namespace ErsatzTV.Core.Errors;
|
|
|
|
public class ScanIsNotRequired : BaseError
|
|
{
|
|
public ScanIsNotRequired() : base("Scan is not required")
|
|
{
|
|
}
|
|
}
|