Skip to content

Commit 54ba3af

Browse files
committed
Remove virtual from CustomView props
1 parent 9c96de0 commit 54ba3af

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

backend/FwLite/MiniLcm/Models/CustomView.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,24 @@ public ViewWritingSystem Copy()
3535

3636
public record CustomView : IObjectWithId<CustomView>
3737
{
38-
public virtual Guid Id { get; set; }
38+
public Guid Id { get; set; }
3939
public DateTimeOffset? DeletedAt { get; set; }
4040

41-
public virtual required string Name { get; set; }
41+
public required string Name { get; set; }
4242
public ViewBase Base { get; set; }
4343

4444
// Visibility = presence in the array. Field order in the list is ignored; builtin order is used,
4545
// If view-level ordering is desired, an explicit flag should be introduced on the view,
4646
// since project-level field ordering is more likely.
47-
public virtual ViewField[] EntryFields { get; set; } = [];
48-
public virtual ViewField[] SenseFields { get; set; } = [];
49-
public virtual ViewField[] ExampleFields { get; set; } = [];
47+
public ViewField[] EntryFields { get; set; } = [];
48+
public ViewField[] SenseFields { get; set; } = [];
49+
public ViewField[] ExampleFields { get; set; } = [];
5050

5151
// Visibility = presence in the array. WS order comes from the project.
5252
// If view-level WS ordering were introduced, it should probably propagate to views,
5353
// so an explicit flag would be appropriate.
54-
public virtual ViewWritingSystem[]? Vernacular { get; set; } // null = inherit project defaults
55-
public virtual ViewWritingSystem[]? Analysis { get; set; } // null = inherit project defaults
54+
public ViewWritingSystem[]? Vernacular { get; set; } // null = inherit project defaults
55+
public ViewWritingSystem[]? Analysis { get; set; } // null = inherit project defaults
5656

5757
public Guid[] GetReferences()
5858
{

0 commit comments

Comments
 (0)