Skip to content

Commit

Permalink
Make IsBuiltIn property public read-only
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco De Salvo committed May 27, 2024
1 parent 1f7ab41 commit d2a6d98
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions RDFSharp/Model/RDFDatatype.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ public class RDFDatatype
/// </summary>
public Uri URI { get; internal set; }

/// <summary>
/// Indicates that the datatype is one of RDFModelEnums.RDFDatatypes
/// </summary>
public bool IsBuiltIn { get; internal set; }

/// <summary>
/// Facets applied on the target datatype
/// </summary>
internal List<RDFFacet> Facets { get; set; }

/// <summary>
/// Indicates that the datatype is built-in into RDFModelEnums.RDFDatatypes
/// </summary>
internal bool IsBuiltIn { get; set; }
#endregion

#region Ctors
Expand Down

0 comments on commit d2a6d98

Please sign in to comment.