Table of Contents

Class BaseSkillset

Namespace
Uncreated.Warfare.Models.Base
Assembly
Uncreated.Warfare.dll
public abstract class BaseSkillset : ICloneable
Inheritance
BaseSkillset
Implements
Derived
Inherited Members

Constructors

BaseSkillset()

protected BaseSkillset()

BaseSkillset(BaseSkillset)

protected BaseSkillset(BaseSkillset other)

Parameters

other BaseSkillset

Properties

Id

[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("pk")]
public uint Id { get; set; }

Property Value

uint

Level

[Column("Level")]
public byte Level { get; set; }

Property Value

byte

Skill

[Column("Skill")]
[StringLength(20)]
public string Skill { get; set; }

Property Value

string

Skillset

[NotMapped]
public Skillset Skillset { get; set; }

Property Value

Skillset

Methods

Clone()

Creates a new object that is a copy of the current instance.

public abstract object Clone()

Returns

object

A new object that is a copy of this instance.