Skip to content

Commit

Permalink
fix: make version check stuff public set
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Dec 21, 2023
1 parent 522b32e commit 1367f13
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions DisCatSharp/BaseExtension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,27 @@ public abstract class BaseExtension
/// <summary>
/// Gets the string representing the version of bot lib extension.
/// </summary>
public string VersionString { get; protected set; } = string.Empty;
public string VersionString { get; set; } = string.Empty;

/// <summary>
/// Gets whether this lib extension supports the built-in version checl.
/// </summary>
public bool HasVersionCheckSupport { get; protected set; } = false;
public bool HasVersionCheckSupport { get; set; } = false;

/// <summary>
/// Gets the repository owner of this lib extension.
/// </summary>
public string RepositoryOwner { get; protected set; } = string.Empty;
public string RepositoryOwner { get; set; } = string.Empty;

/// <summary>
/// Gets the repository of this lib extension.
/// </summary>
public string Repository { get; protected set; } = string.Empty;
public string Repository { get; set; } = string.Empty;

/// <summary>
/// Gets the package id of this lib extension.
/// </summary>
public string PackageId { get; protected set; } = string.Empty;
public string PackageId { get; set; } = string.Empty;

/// <summary>
/// Initializes this extension for given <see cref="DiscordClient"/> instance.
Expand Down

0 comments on commit 1367f13

Please sign in to comment.