-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTypes.cs
47 lines (40 loc) · 987 Bytes
/
Types.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#pragma warning disable CS0649
using System.ComponentModel.DataAnnotations;
using Friflo.Json.Fliox;
namespace SchemaValidation
{
/// class with optional fields
class OptionalFields
{
public int? age;
public string name;
public Gender? gender;
public int[] intArray;
}
/// class with required fields
class RequiredFields
{
public int age;
[Required] public string name;
public Gender gender;
[Required] public int[] intArray;
}
enum Gender
{
male,
female
}
// --- polymorph class type
[Discriminator("vehicleType")]
[PolymorphType(typeof(Car), "car")]
[PolymorphType(typeof(Bike), "bike")]
class Vehicle { }
class Car : Vehicle
{
public int seatCount;
}
class Bike : Vehicle
{
public bool hasLuggageRack;
}
}