Skip to content

Commit

Permalink
required keywords for CRS
Browse files Browse the repository at this point in the history
  • Loading branch information
KatKatKateryna committed Nov 29, 2024
1 parent 5e068e4 commit fd7874e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Speckle.Objects/GIS/CRS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ namespace Speckle.Objects.GIS;
[SpeckleType("Objects.GIS.CRS")]
public class CRS : Base
{
public string? name { get; set; }
public string? authority_id { get; set; }
public string? wkt { get; set; }
public required string name { get; set; }
public required string? authority_id { get; set; }
public required string wkt { get; set; }
public string? units_native { get; set; }
public float? offset_x { get; set; }
public float? offset_y { get; set; }
Expand Down

0 comments on commit fd7874e

Please sign in to comment.