Added technology page
This commit is contained in:
@@ -10,13 +10,27 @@ public sealed class Technology {
|
||||
|
||||
[MaxLength(255)]
|
||||
public required string Name { get; set; }
|
||||
|
||||
[MaxLength(255)]
|
||||
public required string Identifier { get; set; }
|
||||
|
||||
[MaxLength(255)]
|
||||
public string? Suffix { get; set; }
|
||||
|
||||
public TechnologyLevel Level { get; set; } = TechnologyLevel.Beginner;
|
||||
|
||||
public TechnologyType Type { get; set; } = TechnologyType.Language;
|
||||
|
||||
}
|
||||
|
||||
public enum TechnologyLevel : byte {
|
||||
public enum TechnologyLevel {
|
||||
Beginner = 0,
|
||||
Intermediate = 1,
|
||||
Professional = 2
|
||||
}
|
||||
}
|
||||
|
||||
public enum TechnologyType {
|
||||
Language = 0,
|
||||
Framework = 1,
|
||||
Additional = 2
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user