Class Slug
DB-wide unique identifier of a resource.
[Table("Slugs")]
public class Slug
- Inheritance
-
Slug
- Inherited Members
Properties
ConsumedBy
The type, endpoint or service consuming this Slug.
public string? ConsumedBy { get; set; }
Property Value
CreationTimestampUTC
Unix-timestamp of when this Slug was created.
public long CreationTimestampUTC { get; set; }
Property Value
Id
The slug (it's also the DB primary key).
[Key]
[MaxLength(8)]
public required string Id { get; set; }