Table of Contents

Class Slug

Namespace
GastroSky.Models
Assembly
GastroSky.Models.dll

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

string

CreationTimestampUTC

Unix-timestamp of when this Slug was created.

public long CreationTimestampUTC { get; set; }

Property Value

long

Id

The slug (it's also the DB primary key).

[Key]
[MaxLength(8)]
public required string Id { get; set; }

Property Value

string