mirror of
https://github.com/bitwarden/android.git
synced 2026-05-23 14:41:59 -05:00
15 lines
232 B
C#
15 lines
232 B
C#
using Microsoft.Maui.Controls;
|
|
using Microsoft.Maui;
|
|
|
|
namespace Bit.App.Controls
|
|
{
|
|
public class CustomLabel : Label
|
|
{
|
|
public CustomLabel()
|
|
{
|
|
}
|
|
|
|
public int? FontWeight { get; set; }
|
|
}
|
|
}
|