21.192. Class Application

Namespace: ArmoniK.Core.Common.Storage
Assembly: ArmoniK.Core.Common.dll

Represents an application

public record Application : IEquatable<Application>

21.192.1. Inheritance

objectApplication

21.192.2. Implements

IEquatable<Application>

21.192.3. Inherited Members

object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.MemberwiseClone(), object.ReferenceEquals(object?, object?), object.ToString()

21.192.4. Constructors

21.192.4.1. Application(string, string, string, string)

Represents an application

public Application(string Name, string Namespace, string Version, string Service)

21.192.4.1.1. Parameters

Name string

Name of the application

Namespace string

Namespace of the application

Version string

Version of the application

Service string

Service of the application

21.192.5. Properties

21.192.5.1. Name

Name of the application

public string Name { get; init; }

21.192.5.1.1. Property Value

string

21.192.5.2. Namespace

Namespace of the application

public string Namespace { get; init; }

21.192.5.2.1. Property Value

string

21.192.5.3. Service

Service of the application

public string Service { get; init; }

21.192.5.3.1. Property Value

string

21.192.5.4. Version

Version of the application

public string Version { get; init; }

21.192.5.4.1. Property Value

string