mirror of
https://github.com/volodymyrsmirnov/MalwareMultiScan.git
synced 2025-08-24 13:32:22 +00:00
13 lines
292 B
C#
13 lines
292 B
C#
|
using System;
|
||
|
using System.ComponentModel.DataAnnotations;
|
||
|
using MalwareMultiScan.Shared.Attributes;
|
||
|
|
||
|
namespace MalwareMultiScan.Shared.Data.Requests
|
||
|
{
|
||
|
public abstract class BasicRequest
|
||
|
{
|
||
|
[Required]
|
||
|
[UrlValidation]
|
||
|
public Uri CallbackUrl { get; set; }
|
||
|
}
|
||
|
}
|