ShareX/ShareX.UploadersLib/SharingServices/FacebookSharingService.cs
2016-03-22 22:45:12 -04:00

9 lines
No EOL
331 B
C#

namespace ShareX.UploadersLib.SharingServices
{
public class FacebookSharingService : SimpleSharingService
{
public override URLSharingServices EnumValue { get; } = URLSharingServices.Facebook;
protected override string UrlFormatString { get; } = "https://www.facebook.com/sharer/sharer.php?u={0}";
}
}